home *** CD-ROM | disk | FTP | other *** search
/ MacAddict 104 / MacAddict_104_2005-04.iso / Software / Internet & Communication / WordPress 1.2.2 freeware.dmg / wordpress / wp-register.php < prev    next >
PHP Script  |  2004-05-19  |  6KB  |  191 lines

  1. <?php
  2. require('./wp-config.php');
  3.  
  4. function add_magic_quotes($array) {
  5.     foreach ($array as $k => $v) {
  6.         if (is_array($v)) {
  7.             $array[$k] = add_magic_quotes($v);
  8.         } else {
  9.             $array[$k] = addslashes($v);
  10.         }
  11.     }
  12.     return $array;
  13.  
  14. if (!get_magic_quotes_gpc()) {
  15.     $_GET    = add_magic_quotes($_GET);
  16.     $_POST   = add_magic_quotes($_POST);
  17.     $_COOKIE = add_magic_quotes($_COOKIE);
  18. }
  19.  
  20. $wpvarstoreset = array('action');
  21. for ($i=0; $i<count($wpvarstoreset); $i += 1) {
  22.     $wpvar = $wpvarstoreset[$i];
  23.     if (!isset($$wpvar)) {
  24.         if (empty($_POST["$wpvar"])) {
  25.             if (empty($_GET["$wpvar"])) {
  26.                 $$wpvar = '';
  27.             } else {
  28.                 $$wpvar = $_GET["$wpvar"];
  29.             }
  30.         } else {
  31.             $$wpvar = $_POST["$wpvar"];
  32.         }
  33.     }
  34. }
  35.  
  36. if (!get_settings('users_can_register')) {
  37.     $action = 'disabled';
  38. }
  39.  
  40. switch($action) {
  41.  
  42. case 'register':
  43.  
  44.     $user_login = $_POST['user_login'];
  45.     $pass1 = $_POST['pass1'];
  46.     $pass2 = $_POST['pass2'];
  47.     $user_email = $_POST['user_email'];
  48.         
  49.     /* checking login has been typed */
  50.     if ($user_login == '') {
  51.         die (__('<strong>ERROR</strong>: Please enter a login.'));
  52.     }
  53.  
  54.     /* checking the password has been typed twice */
  55.     if ($pass1 == '' || $pass2 == '') {
  56.         die (__('<strong>ERROR</strong>: Please enter your password twice.'));
  57.     }
  58.  
  59.     /* checking the password has been typed twice the same */
  60.     if ($pass1 != $pass2)    {
  61.         die (__('<strong>ERROR</strong>: Please type the same password in the two password fields.'));
  62.     }
  63.     $user_nickname = $user_login;
  64.  
  65.     /* checking e-mail address */
  66.     if ($user_email == '') {
  67.         die (__('<strong>ERROR</strong>: Please type your e-mail address.'));
  68.     } else if (!is_email($user_email)) {
  69.         die (__('<strong>ERROR</strong>: The email address isn’t correct.'));
  70.     }
  71.  
  72.     /* checking the login isn't already used by another user */
  73.     $result = $wpdb->get_results("SELECT user_login FROM $tableusers WHERE user_login = '$user_login'");
  74.     if (count($result) >= 1) {
  75.         die (__('<strong>ERROR</strong>: This login is already registered, please choose another one.'));
  76.     }
  77.  
  78.     $user_ip = $_SERVER['REMOTE_ADDR'] ;
  79.  
  80.     $user_browser = $wpdb->escape($_SERVER['HTTP_USER_AGENT']);
  81.  
  82.     $user_login = $wpdb->escape($user_login);
  83.     $pass1 = $wpdb->escape($pass1);
  84.     $user_nickname = $wpdb->escape($user_nickname);
  85.     $now = gmdate('Y-m-d H:i:s');
  86.     $new_users_can_blog = get_settings('new_users_can_blog');
  87.  
  88.     $result = $wpdb->query("INSERT INTO $tableusers 
  89.         (user_login, user_pass, user_nickname, user_email, user_ip, user_browser, dateYMDhour, user_level, user_idmode)
  90.     VALUES 
  91.         ('$user_login', MD5('$pass1'), '$user_nickname', '$user_email', '$user_ip', '$user_browser', '$now', '$new_users_can_blog', 'nickname')");
  92.     
  93.     if ($result == false) {
  94.         die (sprintf(__('<strong>ERROR</strong>: Couldn’t register you... please contact the <a href="mailto:%s">webmaster</a> !'), get_settings('admin_email')));
  95.     }
  96.  
  97.     $stars = '';
  98.     for ($i = 0; $i < strlen($pass1); $i = $i + 1) {
  99.         $stars .= '*';
  100.     }
  101.  
  102.     $message  = sprintf(__("New user registration on your blog %1\$s:\n\nLogin: %2\$s \n\nE-mail: %3\$s"), get_settings('blogname'), $user_login, $user_email);
  103.  
  104.     @mail(get_settings('admin_email'), sprintf(__('[%s] New User Registration'), get_settings('blogname')), $message);
  105.  
  106.     ?>
  107. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
  108. <html xmlns="http://www.w3.org/1999/xhtml">
  109. <head>
  110.         <title>WordPress » <?php _e('Registration Complete') ?></title>
  111.     <meta http-equiv="Content-Type" content="text/html; charset=<?php echo get_settings('blog_charset'); ?>" />    
  112.     <link rel="stylesheet" href="wp-admin/wp-admin.css" type="text/css" />
  113. </head>
  114. <body>
  115.  
  116. <div id="login"> 
  117.     <h2><?php _e('Registration Complete') ?></h2>
  118.     <p><?php _e('Login:') ?> <strong><?php echo $user_login; ?></strong><br />
  119.     <?php _e('Password:') ?> <strong><?php echo $stars; ?></strong><br />
  120.     <?php _e('E-mail:') ?> <strong><?php echo $user_email; ?></strong></p>
  121.     <form action="wp-login.php" method="post" name="login">
  122.         <input type="hidden" name="log" value="<?php echo $user_login; ?>" />
  123.         <input type="submit" value="<?php _e('Login') ?>" name="submit" />
  124.     </form>
  125. </div>
  126. </body>
  127. </html>
  128.  
  129.     <?php
  130. break;
  131.  
  132. case 'disabled':
  133.  
  134.     ?>
  135. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
  136. <html xmlns="http://www.w3.org/1999/xhtml">
  137. <head>
  138.     <title>WordPress » <?php _e('Registration Currently Disabled') ?></title>
  139.     <meta http-equiv="Content-Type" content="text/html; charset=<?php echo get_settings('blog_charset'); ?>">
  140.     <link rel="stylesheet" href="wp-admin/wp-admin.css" type="text/css">
  141. </head>
  142.  
  143. <body>
  144.  
  145. <div id="login">
  146.     <h2><?php _e('Registration Disabled') ?></h2>
  147.     <p><?php _e('User registration is currently not allowed.') ?><br />
  148.     <a href="<?php echo get_settings('siteurl') .'/'. get_settings('blogfilename'); ?>" title="<?php _e('Go back to the blog') ?>"><?php _e('Home') ?></a>
  149.     </p>
  150. </div>
  151.  
  152. </body>
  153. </html>
  154.  
  155.     <?php
  156. break;
  157.  
  158. default:
  159.  
  160. ?>
  161. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
  162. <html xmlns="http://www.w3.org/1999/xhtml">
  163. <head>
  164.     <title>WordPress » <?php _e('Registration Form') ?></title>
  165.     <meta http-equiv="Content-Type" content="text/html; charset=<?php echo get_settings('blog_charset'); ?>" />
  166.     <link rel="stylesheet" href="wp-admin/wp-admin.css" type="text/css" />
  167. </head>
  168.  
  169. <body>
  170. <div id="login">
  171. <h2><?php _e('Registration') ?></h2>
  172.  
  173. <form method="post" action="wp-register.php">
  174.     <input type="hidden" name="action" value="register" />
  175.     <label for="user_login"><?php _e('Login:') ?></label> <input type="text" name="user_login" id="user_login" size="10" maxlength="20" /><br />
  176.     <label for="pass1"><?php _e('Password:') ?></label> <input type="password" name="pass1" id="pass1" size="10" maxlength="100" /><br />
  177.  
  178.     <input type="password" name="pass2" size="10" maxlength="100" /><br />
  179.     <label for="user_email"><?php _e('E-mail') ?></label>: <input type="text" name="user_email" id="user_email" size="15" maxlength="100" /><br />
  180.     <input type="submit" value="<?php _e('OK') ?>" class="search" name="submit" />
  181. </form>
  182. </div>
  183.  
  184. </body>
  185. </html>
  186. <?php
  187.  
  188. break;
  189. }
  190. ?>